#form{
    /* overflow: hidden; */
    transition: all 1s ease-in;
}
::selection{
    color: #fff;
    background: #664AFF;
  }
  .s-img{
    width: 20%;
  }
  .s-box{
    color: #644bff;
    /* border-bottom: 1px solid #2980B9; */
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
  } 
  .s-box h3{
     align-self: center;
    justify-self: center; 
    margin: 1rem;
  }

  

  .autocom-box .spacer{ 
    width: 80%;
  }
  .s-wrapper{
    right: 4vw;
    position: sticky;
    z-index: 9999;
    width: 25vw;
    max-width: 450px;
    /* margin: 1rem auto; */
    top: 4vh;
    float: right;
  }
  #form:focus{
    
    box-shadow: 0px 0px 6px 1px rgba(93, 173, 226, 0.7);
  }


  
  .search-input{
      
  }
  .s-wrapper .search-input{
    background: transparent;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
  }
  
  .search-input input{
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
    background: rgba(34, 37, 75, 0.91);
  }
  
  .search-input.active input{
    border-radius: 5px 5px 0 0;
  }
  

.autocom-box{
  background-color: rgba(34, 37, 75, 0.91);
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 30vh;
  box-shadow: 0px 0px 6px 1px rgba(93, 173, 226, 0.7);
}



.autocom-box::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.autocom-box{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}






  .search-input .autocom-box{
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
  }
  
  .search-input.active .autocom-box{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
  }
  
  .autocom-box li{
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
  }
  
  .search-input.active .autocom-box li{
    display: block;
  }
  .autocom-box li:hover{
    background: #efefef;
  }
  
  .search-input .icon{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #644bff;
    cursor: pointer;
  }

  .empty-space{
      width: 100%;
      height: 300vh;
      background-color: steelblue;
  }